home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 November / Chip 11-96.iso / workshop / other / testlin / testlin.exe / LINUX / USR / BIN / S < prev    next >
Encoding:
Text File  |  1996-02-27  |  241 b   |  6 lines

  1. #!/bin/sh
  2. echo split files in pieces just right for a 1.44MB floppy disk.
  3. echo combine the pieces back to original file with "cat <piece0..n> >>file".
  4. echo this is piece number $2:
  5. dd if=$1 of=$1.$2 bs=1024 skip=`expr 1410 \* $2` count=1410
  6.